Skip to main content

API Reference Guide - CommentInfo Object

VIDIZMO users can comment on a media to give their views and opinions about the media. Comments are a simple way to provide feedback or simply drop in a note. The comments feature allows you to post a new text comment, either to respond to the video or join in on a conversation already taking place. In VIDIZMO, any user with a Viewer+ role is able to add a comment from the Media's Playback page.

Here we shall be looking at CommentInfo Object in detail to understand the various properties it contains in VIDIZMO REST API Reference.

CommentInfo Object

{
// Primary key of comment object in system. Used to uniquely identify comment in system
"id": <number> ,
// If comment is in moderation, then this status will indicate current moderation status of comment. Possible values of moderation are given below
// PendingForApproval: When comment is awaiting moderation
// Approved: When comment has passed moderation
// Rejected: When moderator has rejected comment
"commentModerationStatus": <string> ,
// Actual content of the comment
"commentContent": <string> ,
// Mashup against which this comment is made
"mashup": <mashupInfo>, // Read: API Reference Guide - MashupInfo Object
// Tenant to which this comment belong
"tenant": <tenantInfo>, // Read: API Reference Guide - TenantInfo Object
// UTC date and time when this comment was added in system
"addedDateTime": <utcDateAndTime> ,
//Read: API Reference Guide - UserInfo Object
"addedBy": <userProfileInfo> ,
//Read: API Reference Guide - UserInfo Object
"updatedBy": <userProfileInfo> ,
// All replies made to this comment
"replies": <commentInfo[]> , //Read: API Reference Guide - CommentInfo Object
// The moderator who moderated comment
"moderatedBy": <userProfileInfo> , //Read: API Reference Guide - UserInfo Object
// Date and time on which comment was moderated
"moderationDateTime": <utcDateAndTime> ,
// True, when comment is deleted
"isDeleted": <boolean> ,
// Basic stats of comments
"stats": {
"likes": <number> ,
"disLikes": <number> ,
"replies": <number>
},
// Rating of comment. This object is private to every user and indicate their own action against comment.
"myRating": {
"id": <number> ,
"value": <number> ,
// Rating type possible values are StarRating, LikeDislike
"type": <string> ,
"subject": <string> ,
"objectId": <number> ,
"tenantId": <number> ,
"isDeleted": <boolean> ,
"userProfileId": <number> ,
"addedDateTime": <utcDateAndTime> ,
"updatedOn": <utcDateAndTime>
}
}